-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
59 lines (57 loc) · 1.87 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='iagitup',
version='1.7',
author='Giovanni Damiola',
url='https://github.com/gdamdam/iagitup',
license = "GNU General Public License v3.0",
description= 'Tool to archive a git repository form GitHub to the Internet Archive.',
long_description=read('README.md'),
keywords = "github internetarchive",
platforms = 'POSIX',
packages = ['iagitup'],
zip_safe = False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
'iagitup = iagitup.__main__:main',
],
},
install_requires=[
'appdirs',
'args',
'asn1crypto',
'cffi',
'clint',
'cryptography',
'docopt',
'enum34',
'gitdb2',
'GitPython',
'idna',
'internetarchive',
'ipaddress',
'jsonpatch',
'markdown2',
'ndg-httpsclient',
'packaging',
'pyasn1',
'pycparser',
'pyOpenSSL',
'pyparsing',
'requests',
'schema',
'six',
'smmap2',
'wheel']
)