-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.57 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.57 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
42
43
44
45
46
47
48
#!/bin/python3
import warnings
import os
from setuptools import setup, find_packages
__version__ = None
exec(open('PanChIP/version.py').read())
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
setup(
name = 'panchip',
packages = ['PanChIP'],
version = __version__,
license='MIT',
description = 'Pan-ChIP-seq Analysis of Peak Sets',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author = 'Hanjun Lee',
author_email = 'hanjun@alum.mit.edu',
url = 'https://github.com/hanjunlee21/PanChIP',
download_url = 'https://github.com/hanjunlee21/PanChIP/archive/refs/tags/v.' + __version__ + '.tar.gz',
keywords = ['chip-seq', 'bedfile'],
install_requires=[
'pandas',
'scipy',
],
scripts=['bin/panchip'],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Awk',
'Programming Language :: Unix Shell',
],
)