-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (42 loc) · 1.27 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from glob import glob
from os.path import splitext, basename
from setuptools import find_packages, setup
with open('README.rst', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='abeona',
version='0.45.0',
description='',
long_description=readme,
author='Warren W. Kretzschmar',
author_email='[email protected]',
maintainer='Warren W. Kretzschmar',
maintainer_email='[email protected]',
url='https://github.com/winni2k/abeona',
license='Apache-2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={
'console_scripts': ['abeona=abeona.__main__:main'],
},
install_requires="""
cortexpy >= 0.45.6
pandas
progressbar2
pysam
""".split('\n'),
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
)