-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
33 lines (29 loc) · 1.07 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
#!/usr/bin/env python
# coding=utf-8
from distutils.core import setup
from setuptools import find_packages
PACKAGE = "lightnn"
NAME = "lightnn"
DESCRIPTION = "This package can download funds data from https://github.com/l11x0m7/lightnn. For details, please visit https://skyhigh233.com."
AUTHOR = "Xuming Lin"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/l11x0m7/lightnn"
VERSION = __import__(PACKAGE).__version__
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
# long_description=open("README.md", 'rb').readlines(),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="Apache License, Version 2.0",
url=URL,
packages=find_packages('./'),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
zip_safe=False,
)