-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
54 lines (47 loc) · 1.7 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
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
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_mri",
version="0.0.4",
packages=find_packages(),
include_package_data=True,
license="AGPLv3",
description="A reusable Django app to manage MRI data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheLabbingProject/django_mri",
author="Zvi Baratz",
author_email="[email protected]",
keywords="django mri neuroimaging research",
python_requires=">=3.6",
install_requires=install_requires,
dependency_links=dependency_links,
extras_require={"dev": dev_requirements},
classifiers=[
"Development Status :: 2 - Pre-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",
],
)