forked from angelolab/toffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 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
from os import path, pardir
from setuptools import setup, find_packages
VERSION = '0.1.1'
PKG_FOLDER = path.abspath(path.join(__file__, pardir))
with open(path.join(PKG_FOLDER, 'requirements.txt')) as req_file:
requirements = req_file.read().splitlines()
# set a long description which is basically the README
with open(path.join(PKG_FOLDER, 'README.md')) as f:
long_description = f.read()
setup(
name='toffy',
version=VERSION,
packages=find_packages(),
license='Modified Apache License 2.0',
description='Scripts for interacting with and generating data from the commercial MIBIScope',
author='Angelo Lab',
url='https://github.com/angelolab/toffy',
download_url='https://github.com/angelolab/toffy/archive/v{}.tar.gz'.format(VERSION),
install_requires=requirements,
extras_require={
'tests': ['pytest',
'pytest-cov',
'pytest-pycodestyle',
'testbook']
},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=['License :: OSI Approved :: Apache Software License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8']
)