-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (48 loc) · 1.77 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
55
56
57
58
import setuptools
import os
import codecs
KEYWORDS = ['Testing', 'Devops']
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
HERE = os.path.abspath(os.path.dirname(__file__))
def get_long_description():
"""Get the long_description from the README.rst file. Assume UTF-8 encoding."""
with codecs.open(os.path.join(HERE, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
return long_description
if __name__ == '__main__':
setuptools.setup(
name='SCAInet',
version='0.1.0-dev',
author='Sebastian Schaaf',
author_email='',
description='If Dr. Frankenstein were an arthropod, and also a python package',
license='GPLv3',
url='https://github.com/elek-tron-ich/workshop',
# Look for python code inside /src/
packages=setuptools.find_packages(where='src'),
# Assign the package-level folder ('') to be the one it finds in 'src'
package_dir={'': 'src'},
install_requires=[
'click',
],
# Add command line function to automatically run the main function from animated_barnacle.cli
entry_points={
'console_scripts': [
'animated_barnacle = animated_barnacle.cli:main',
]
},
long_description=get_long_description(),
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
)