-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 961 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 961 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="AutoGS",
version="0.1.0",
packages=find_packages(),
description="Automated Machine Learning for Environmental Data-Driven Genome Prediction",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AIBreeding/AutoGS",
python_requires='>=3.9',
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
)