-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 850 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
from setuptools import setup
from gitfile import __version__ as version
setup(
name='GitFile',
version=version,
author='Satoshi Tanimoto',
author_email='[email protected]',
description='gitfile is a wrapper to Git and allows to edit files without checking out a repository.',
long_description=open('README.rst').read(),
url='http://github.com/stanimoto/python-gitfile',
packages=['gitfile'],
license='BSD',
dependency_links=[],
install_requires=[
'pygit2',
'Werkzeug',
],
tests_require=['unittest2', 'nose', 'pep8'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'License :: OSI Approved :: BSD License',
],
)