-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 1.11 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
with open("sirad/VERSION") as f:
version = f.read().strip()
setup(
name="sirad",
author="Mark Howison",
author_email="mhowison@ripl.org",
version=version,
url="https://github.com/ripl-org/sirad",
description="Secure Infrastructure for Research with Administrative Data",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: Free for non-commercial use",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering"],
provides=["sirad"],
install_requires=[
"openpyxl",
"pandas",
"PyYAML",
"usaddress"],
packages=find_packages(),
package_data={"sirad": ["VERSION"]},
entry_points={
"console_scripts": [
"sirad = sirad.__main__:main"
]
}
)