-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.14 KB
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
#!/usr/bin/env python
# coding=utf-8
"""
python distribute file
"""
from setuptools import setup, find_packages
# make sure I can import wells without installing any dependency, otherwise,
# this will fail.
from wells import __version__
setup(
name="wells",
version=__version__,
packages=find_packages(),
install_requires=[],
author="Yuanle Song",
author_email="sylecn@gmail.com",
maintainer="Yuanle Song",
maintainer_email="sylecn@gmail.com",
description="wells python utilities",
long_description=open('README.rst').read(),
license="Apache 2.0",
url="https://pypi.org/project/wells/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)