-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (25 loc) · 932 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
28
29
30
31
32
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [pkg.split('=')[0] for pkg in open('requirements.txt').readlines()]
description = "Commandline tool to send free SMS via http://www.meet.net.np"
long_description = open("README.rst").read()
classifiers = ['Environment :: Console',
'Programming Language :: Python :: 3'
]
version = open('CHANGES.txt').readlines()[0][1:].strip()
setup(name='ntc-websms',
version=version,
description=description,
author='Sandip Bhagat',
author_email='[email protected]',
url='https://github.com/sandipbgt/ntc-websms',
scripts=['src/meet',],
install_requires=requirements,
long_description=long_description,
packages=['ntc_websms'],
package_dir = {'ntc_websms': 'src/ntc_websms'},
classifiers=classifiers
)