-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
37 lines (32 loc) · 927 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
37
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
# if you are not using vagrant, just delete os.link directly,
# The hard link only saves a little disk space, so you should not care
if os.environ.get('USER', '') == 'vagrant':
del os.link
setup(
name='harvey',
version='0.0.5',
description='harvey helps you manage and choose license from command line',
long_description=open('README.rst').read(),
author='Archit Verma',
author_email='[email protected]',
license='MIT',
keywords=['license', 'legal', 'github', 'command line', 'cli'],
url='https://github.com/architv/harvey',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={
'harvey': ['*.json'],
},
install_requires=[
'docopt>=0.6.2',
'requests>=2.8.0',
'colorama==0.3.3'
],
entry_points={
'console_scripts': [
'harvey = harvey.harvey:main'
],
}
)