-
Notifications
You must be signed in to change notification settings - Fork 282
/
setup.py
executable file
·48 lines (42 loc) · 1.42 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup, find_packages
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = '0.6'
setup(
name='rockstar',
version=version,
install_requires=requirements,
author='Avinash Sajjanshetty',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/avinassh/rockstar/',
license='MIT',
description='Makes you a Rockstar programmer in 2 minutes',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'rockstar = rockstar:cli',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)