-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (31 loc) · 1.26 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
from os import listdir
from setuptools import setup, find_packages
setup(
name='askocli',
version='0.5',
description='Command line interface for a distant AskOmics',
author='Xavier Garnier',
author_email='[email protected]',
url='https://github.com/askomics/askocli',
download_url='https://github.com/askomics/askocli/archive/0.5.tar.gz',
install_requires=['requests>=2.4.3'],
packages=find_packages(),
license='AGPL',
platforms='Posix; MacOS X; Windows',
scripts=['bin/' + f for f in listdir('bin')],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3',
'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'
])