This repository was archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.29 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.29 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with io.open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='ghstats',
version='0.1.0',
description='Simple GitHub stats interface',
long_description=readme,
author='S Melnikov',
author_email='asmelnikovse@gmail.com',
url='https://github.com/smelnikov/cv-github-stats',
packages=[
'ghstats',
'ghstats.api'
],
package_dir={
'ghstats': 'ghstats',
'ghstats.api': 'ghstats/api',
},
include_package_data=True,
install_requires=[],
license='MIT',
zip_safe=False,
keywords='ghstats',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'ghstats = ghstats.__main__:main'
]
}
)