-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (28 loc) · 982 Bytes
/
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
from setuptools import find_packages, setup
# requirements = []
# with open("requirements.txt", "r") as f:
# for line in f:
# requirements.append(line)
setup(
name="brainage",
version="0.1.0",
description="Brainage prediction project",
url="https://github.com/juaml/brainage_estimation",
author="Applied Machine Learning FZJ",
packages=find_packages(),
# install_requires=requirements,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
python_requires=">=3.6",
include_package_data=True,
package_data={"": ["data/*"]},
)