-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·60 lines (49 loc) · 1.69 KB
/
setup.py
File metadata and controls
executable file
·60 lines (49 loc) · 1.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
from dgm.main import dgm_version
readme = open('README.textile').read()
v = dgm_version
long_description = """
To find out what's new in this version of dgm, please see `the changelog
<http://www.edgenius.com/dgm/%s/changelog.html>`_.
----
%s
----
For more information, please see the Edgenius website or execute ``dgm -h``.
""" % (v, readme)
setup(
name='dgm',
version=dgm_version,
description='dgm is a simple, Pythonic tool for distribute file management by git.',
long_description=long_description,
author='Dapeng Ni',
author_email='dapeng.ni@edgenius.com',
url='http://www.edgenius.com',
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts': [
'dgm = dgm.main:main',
]
},
classifiers=[
'Development Status :: 0 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)