-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 895 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
#!/usr/bin/python3
from setuptools import setup, find_packages
from setup.setup_hook import PostDevelopCommand
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
setup(
name="gh-license",
version="0.3.0",
author="Mte90",
author_email="[email protected]",
url="https://github.com/Mte90/GH-License",
install_requires=open(os.path.join(BASE_DIR, "requirements.txt")).readlines(),
license="GPLv3",
description="Scan github, bitbucket or other providers repositories for missing license files and add them",
download_url='https://github.com/Mte90/GH-License/tarball/0.3.0',
package_data={"ghlicense": ["*.json"]},
packages=find_packages(exclude=["setup", "setup.*"]),
entry_points={
'console_scripts': [
'gh-license=ghlicense.cmd:main'
]
},
cmdclass={
'develop': PostDevelopCommand
}
)