-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (24 loc) · 922 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (24 loc) · 922 Bytes
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
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 listen all radio stations of Nepal"
# long_description = open("README.rst").read()
classifiers = ['Environment :: Console',
'Programming Language :: Python :: 3'
]
# version = open('CHANGES.txt').readlines()[0][1:].strip()
setup(
name='SpellNepaliNumber',
version='1.2.2',
description="To Spell Out Nepali Numbers In Nepali Language.",
author='Shital Babu Luitel',
author_email='ctalluitel@gmail.com',
url='https://github.com/shitalluitel/SpellNepaliNumber',
scripts=['src/spellnepalinumber'],
# install_requires=requirements,
packages=['SpellNepaliNumber'],
package_dir = {'SpellNepaliNumber': 'src/SpellNepaliNumber'},
classifiers=classifiers
)