-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
40 lines (26 loc) · 927 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019/1/16 14:02
# @Author : wangchong
# @Email: [email protected]
# @File : App.py
# @Software: PyCharm
from setuptools import setup, find_packages
requires=[]
with open("requirements.txt", mode="r", encoding="utf8") as f:
for line in f.readlines():
requires.append(line.strip())
setup(name='person_time_manage_system',
version='0.1',
url='https://github.com/chongwangcc/person_time_manage_system',
license='MIT',
author='chongwangcc',
author_email='[email protected]',
description='analysis where is you time spent?',
packages=find_packages(exclude=['person_time_manage_system']),
include_package_data=True,
long_description=open('README.md', encoding="utf8").read(),
zip_safe=False,
setup_requires=requires,
package_dir={'': 'person_time_manage_system'}
)