-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (66 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# For a template, see:
# https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='clonepool',
# license='', # TODO
version='0.1',
description='Efficient sample pooling under varying conditions', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown',
url='https://github.com/phiweger/clonepool', # Optional
# author='', # Optional TODO
# author_email='', # Optional TODO
packages=find_packages(),
python_requires='>=2.7',
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'tox',
'pytest',
'click',
'networkx',
'numpy',
'tqdm',
'more-itertools',
], # Optional
# If there are data files included in your packages that need to be
# installed, specify them here.
# package_data={ # Optional TODO
# 'sample': ['package_data.dat'],
# },
entry_points='''
[console_scripts]
clonepool=clonepool.__main__:cli
''',
# List additional URLs that are relevant to your project as a dict.
#
# This field corresponds to the "Project-URL" metadata fields:
# https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
#
# Examples listed include a pattern for specifying where the package tracks
# issues, where the source is hosted, where to say thanks to the package
# maintainers, and where to support the project financially. The key is
# what's used to render the link text on PyPI.
# project_urls={ # Optional
# 'Bug Reports': 'https://github.com/pypa/sampleproject/issues',
# 'Funding': 'https://donate.pypi.org',
# 'Say Thanks!': 'http://saythanks.io/to/example',
# 'Source': 'https://github.com/pypa/sampleproject/',
# 'Preprint': 'arxiv.org/bioRxiv etc.' # TODO
# },
classifiers=[
'Programming Language :: Python :: 3.7',
# TODO pick license. ID: cf. https://pypi.org/classifiers/
# 'License :: OSI Approved :: MIT License',
],
)