-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 848 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 848 Bytes
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
from setuptools import setup, find_packages
import sys
if sys.version_info < (3,6):
print("Light requires python version 3.6 or higher.")
sys.exit(1)
setup(
name="light",
version="0.1",
description="light",
long_description="light",
author="CRITs",
author_email="",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='crits light',
url='https://www.github.com/crits/light',
install_requires=[
],
packages=find_packages(exclude=['docs', 'tests']),
entry_points={
'console_scripts': [
'illuminate=light:main',
]
}
)