-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
41 lines (38 loc) · 1.08 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
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from getpass import getuser
import os
from sys import platform
import subprocess
user = getuser()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'turbocharge',
version = '0.0.2',
description= 'Turbocharged Way To Install All The Packages You Love!',
url="https://github.com/XtremeDevX/turbocharge",
author = 'xtremedevx',
author_email = '[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['turbocharge'],
packages=find_packages(),
install_requires = [
'Click',
'progress',
'halo'
],
entry_points =
'''
[console_scripts]
turbo=turbocharge:cli
''',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
)