forked from t413/SMS-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 783 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
import os, json
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
v = json.loads(read("VERSION"))
__version__ = "%i.%i.%i" % (v['version_major'],v['version_minor'],v['version_patch'])
setup(
name='smstools',
version=__version__,
description='Universal SMS conversion tool',
long_description=read('README.rst'),
author='Tim O\'Brien',
author_email='[email protected]',
packages=['smstools', 'smstools.tests'],
scripts=['bin/smstools'],
url='https://github.com/t413/SMS-Tools',
license='CC BY-NC-SA 3.0 US',
install_requires=['unicodecsv>=0.9.3'],
extras_require = {
'colors': ["blessings>=1.5.0"],
'autocomplete': ["argcomplete>=0.8.0"],
},
)