-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 843 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'caselawnet/_version.py')) as versionpy:
exec(versionpy.read())
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name = "caselawnet",
version = "0.3.3",
description = ("Flask application for querying networks of Dutch case law"),
license = "Apache 2.0",
keywords = "Python",
url = "https://github.com/NLeSC/CaseLawAnalytics",
packages=['caselawnet'],
install_requires=required,
long_description=read('README.md'),
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
)