-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.45 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
import setuptools
import os
from os.path import join, dirname
def get_file_contents(filename):
package_directory = dirname(__file__)
with open(join(package_directory, filename), 'r', encoding='utf-8') as file:
contents = file.read()
return contents
long_description = get_file_contents('README.md')
requirements = [
'pandas==1.3.2',
'python-igraph==0.9.6',
]
version = get_file_contents(join('coincidencetest', 'version.txt'))
setuptools.setup(
name='coincidencetest',
version=version,
author='James Mathews',
author_email='[email protected]',
description='An exact test for coincidence of feature values along a sample set.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[
'coincidencetest',
],
scripts=[
'scripts/coincidence-clustering',
'scripts/coincidencetest-plot',
'scripts/coincidencetest-distribution-plot',
],
classifiers=[
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
],
package_data={'coincidencetest': ['version.txt']},
python_requires='>=3.8',
install_requires=requirements,
project_urls = {
'Documentation': 'https://github.com/nadeemlab/coincidencetest',
'Source code': 'https://github.com/nadeemlab/coincidencetest',
},
url = 'https://github.com/nadeemlab/coincidencetest',
)