-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (55 loc) · 2.12 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import setuptools
import pathlib
from io import open
from os import path
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# The current version
VERSION = (HERE / "lightbeam/VERSION.txt").read_text()
# automatically captured required modules for install_requires in requirements.txt
with open(path.join(HERE, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs if ('git+' not in x) and (
not x.startswith('#')) and (not x.startswith('-'))]
dependency_links = [x.strip().replace('git+', '') for x in all_reqs \
if 'git+' not in x]
setuptools.setup (
name = 'lightbeam',
description = 'Sends JSONL data into an Ed-Fi API',
version = VERSION,
#packages = find_packages(), # list of all packages
packages = setuptools.find_namespace_packages(include=['lightbeam', 'lightbeam.*']),
# package_data={'lightbeam': ['resources/*.txt']},
install_requires = install_requires,
python_requires='>=3',
entry_points='''
[console_scripts]
lightbeam=lightbeam.__main__:main
''',
zip_safe=False,
author="Tom Reitz",
keywords="data, transmission, api, edfi",
long_description=README,
long_description_content_type="text/markdown",
license='Apache 2.0',
url='https://github.com/edanalytics/lightbeam',
download_url='https://github.com/edanalytics/lightbeam/archive/0.0.1.tar.gz',
dependency_links=dependency_links,
author_email='treitz@edanalytics.org',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
]
)