forked from ezyang/git-ftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.22 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
# Third Party
from setuptools import setup
# gitftp
from gitftp import __version__
setup(name='gitftp',
version=__version__,
author='Peter van der Does',
author_email='[email protected]',
license='MIT',
description='Quick and efficient publishing of Git repositories over FTP',
packages=['gitftp'],
include_package_data=True,
entry_points={'console_scripts': ['git-ftp = git-ftp:main', ], },
package_data={'': ['README.rst']},
install_requires=['pathspec>=0.4.0',
'GitPython>=2.0.8',
],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
]
)