-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.17 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
#!/usr/bin/env python3.5
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '0.0.1.alpha0'
packages = ['singlefile']
install_requires = [
'requests'
]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
config = {
'description': 'import from web. share your snippets and import them from web',
'author': 'Srinivas Devaki',
'url': 'https://gitlab.com/eightnoteight/singlefile',
'download_url': 'https://gitlab.com/eightnoteight/singlefile/repository/archive.zip?ref=master',
'author_email': 'mr.eightnoteight@gmail.com',
'version': version,
'install_requires': install_requires,
'packages': packages,
'scripts': [],
'classifiers': classifiers,
'name': 'singlefile'
}
setup(**config)