-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.27 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
52
53
54
55
import os
from setuptools import setup, find_packages
version = '0.1'
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.txt')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
except IOError:
README = CHANGES = ''
long_description = (
README
+ '\n'
+ CHANGES
+ '\n'
)
requires = []
entry_points = {
'console_scripts': [
'miraclelight = miraclelight:run',
],
}
setup(
name='miraclelight',
version=version,
description="The Python TestRunner by battle heroine \"Pretty Cure\".",
long_description=long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords='',
author='Jiro Nejime',
author_email='[email protected]',
url='https://github.com/drillbits/miraclelight',
license='MIT',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points=entry_points,
)