forked from nogibjj/pyli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 989 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
33
34
35
36
#!/usr/bin/env python
from os.path import dirname,join
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
f = open(join(dirname(__file__), 'docs', 'index.txt'))
long_description = f.read().strip()
f.close()
setup(
name='liten',
version='0.1.6',
description='a de-duplication command line tool',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
author='Noah Gift',
author_email='[email protected]',
url='https://github.com/nogibjj/pyli',
download_url="https://github.com/nogibjj/pyli",
license='MIT',
zip_safe=False,
py_modules=['liten', 'test_liten'],
entry_points="""
[console_scripts]
liten = liten:main
""",
)