-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.44 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.44 KB
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
from setuptools import setup
import os
from genoml import __version__
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.md"), "r") as fp:
long_description = fp.read()
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.txt"), "r") as fp:
requirements = fp.read().split("\n")
setup(
name='genoml',
version=__version__,
packages=['genoml', 'genoml.steps'],
url='https://github.com/genoml/genoml-core',
license='Apache-2.0',
author='Sayed Hadi Hashemi',
author_email='SayedHadiHashemi@gmail.com',
maintainer='Faraz Faghri',
maintainer_email='faraz.faghri@gmail.com',
description='Machine Learning for Genomic',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points={
'console_scripts': [
'genoml-cli=genoml.main:cli',
'genoml-train=genoml.main:train',
'genoml-inference=genoml.main:inference',
],
},
install_requires=requirements,
package_data={'genoml': ['misc/*', 'misc/*/*', 'experimental/*', 'experimental/*/*']},
)