forked from myevan/pypm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (32 loc) · 794 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (32 loc) · 794 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
35
36
37
#!/usr/bin/env python
"""
ProjectManager
==============
The Project Manager provides support for managing application based on Python
"""
import os
import sys
from setuptools import setup
install_requires = []
if sys.version_info < (2, 7):
install_requires += ['argparse']
readme_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.md')
setup(
name='pypm',
version='0.0.1',
url='https://github.com/myevan/pypm',
license='MIT',
author='myevan',
author_email='myevan@outlook.com',
description='Project Manager base on Python',
long_description=open(readme_path).read(),
packages=[
'pypm'
],
zip_safe=False,
install_requires=install_requires,
tests_require=[
'pytest',
],
platforms='any',
)