-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='githubstars',
version='0.0.6',
description='List repository stars and info through Gituhb v4 GraphQL API',
long_description=long_description,
url='https://github.com/hanksudo/githubstars',
author='Hank Wang',
author_email='drapho@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='stars github graphql',
py_modules=['githubstars'],
install_requires=[],
entry_points={
'console_scripts': [
'githubstars=githubstars:main'
]
}
)