-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
"""setup.py file for samiTools."""
# Import required modules
from distutils.core import setup
from setuptools import setup, find_packages
print(str(find_packages()))
setup(name='samiTools',
version='1.0.0',
author='Victoria Morris',
author_email='[email protected]',
license='MIT License',
description='Tools for working with SAMI files.',
long_description=
'''Tools for working with SAMI files.''',
packages=find_packages(),
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python'
'Topic :: Scientific/Engineering :: Information Science',
'Topic :: Text Processing'
],
url='https://github.com/victoriamorris/samiTools',
requires=['setuptools', 'regex']
)