-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.56 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
49
50
51
from __future__ import absolute_import
from setuptools import find_packages, setup
from os.path import dirname, join, realpath
HERE = dirname(realpath(__file__))
try:
FileNotFoundError
except NameError:
FileNotFoundError = IOError
try:
with open(join(HERE, 'reeeeeeeeee', 'VERSION'), 'r') as r:
version = r.read()
except FileNotFoundError:
version = '0.0.0'
with open(join(HERE, 'README.rst'), 'r') as r:
long_description = r.read()
setup(
name="reeeeeeeeee",
author="Levi Noecker",
author_email="levi.noecker@gmail.com",
url="https://github.com/leviable/reeeeeeeeee",
description="Raging on the command line",
long_description=long_description,
license="MIT",
packages=find_packages(),
version=version,
install_requires=[],
keywords="",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
],
entry_points={
'console_scripts': ['r{0}=reeeeeeeeee.__init__:reeeeeeeeee'.format('e'*count) for count in range(1, 31)]
}
)