-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·36 lines (27 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
34
35
#!/usr/bin/env python
import sys
from distutils.core import setup
# this affects the names of all the directories we do stuff with
sys.path.insert(0, './')
from sslfetch import __version__
#__version__ = os.getenv('VERSION', default='9999')
setup(name = 'ssl-fetch',
version = __version__,
description = "A python interface wrapper for the dev-python/requests package",
author = 'Brian Dolbec',
author_email = '[email protected]',
url = "https://github.com/dol-sen/ssl-fetch",
packages = ['sslfetch'],
license = 'GPL-2',
long_description=open('README.md').read(),
keywords='ssl',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3.2',
'Operating System :: OS Independent',
'Topic :: System :: Systems Administration'
],
)