-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='sauron',
version='1.0.0',
install_requires=[r for r in open('requirements.txt', 'r').read().split('\n') if r],
author='Anantha Natarajan S',
author_email='sananthanatarajan12@gmail.com',
packages=['sauron'],
entry_points = {
'console_scripts': ['sauron=sauron:console_main'],
},
test_suite='tests',
url='https://github.com/sananth12/sauron/',
description='A simple tool that helps you avoid RSI and CSV.',
classifiers=[
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities'
],
)