-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·37 lines (34 loc) · 1.23 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
#!/usr/bin/env python
import os, glob
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as req_fh:
install_requires = req_fh.read().splitlines()
setup(
name="fusillade",
version="0.0.1",
url="https://github.com/humancellatlas/fusillade",
license="MIT License",
author="Andrey Kislyuk",
author_email="[email protected]",
description="Federated User Identity Login & Access Decision Engine",
long_description=open("Readme.md").read(),
install_requires=install_requires,
extras_require={
':python_version == "2.7"': ["enum34 >= 1.1.6, < 2"]
},
packages=find_packages(exclude=["test"]),
scripts=glob.glob("scripts/*"),
platforms=["MacOS X", "Posix"],
package_data={"fusillade": ["*.json"]},
include_package_data=True,
test_suite="test",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)