-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (26 loc) · 847 Bytes
/
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
__author__ = 'Pauli Salmenrinne'
from setuptools import setup
requires = [
]
setup( name='sarch',
version="1.0.0",
description='Simple archiving solution',
scripts=['bin/sarch'],
packages=['sarch'],
long_description=open('README.rst').read(),
url='https://github.com/susundberg/',
author='Pauli Salmenrinne',
author_email='[email protected]',
license='MIT',
install_requires=requires,
test_suite="test",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Archiving',
'Topic :: System :: Filesystems'
],
zip_safe=True )