-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
41 lines (34 loc) · 1.06 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
#coding=utf8
from setuptools import setup, find_packages
try:
long_description = open('README.md').read()
except Exception as e:
long_description = ''
install_requires = []
for line in open('requirements.txt').readlines():
line = line.strip()
if line and not line.startswith('#'):
install_requires.append(line)
setup(
name='eave',
version='0.1.3',
description='A Restful Api Document Builder For Pythonista',
long_description=long_description,
long_description_content_type="text/markdown",
author='tao.py',
author_email='taojy123@163.com',
maintainer='tao.py',
maintainer_email='taojy123@163.com',
install_requires=install_requires,
license='MIT License',
packages=find_packages(),
include_package_data=True,
platforms=["all"],
url='https://github.com/taojy123/eave',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)