-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (45 loc) · 1.57 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
requirements = fh.read().splitlines()
install_requires = [
requirement
for requirement in requirements
if not requirement.startswith("git+")
]
dependency_links = [
requirement
for requirement in requirements
if requirement.startswith("git+")
]
with open("requirements-dev.txt") as fh:
dev_requirements = fh.read().splitlines()
setup(
name="django_analyses",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
license="AGPLv3",
description="A reusable Django app to manage analyses.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheLabbingProject/django_analyses",
author="Zvi Baratz",
author_email="[email protected]",
keywords="django research analysis pipeline",
install_requires=install_requires,
dependency_links=dependency_links,
extras_require={"dev": dev_requirements},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django :: 2.2",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)