-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (45 loc) · 1.43 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
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
61
62
63
64
65
# -*- coding: utf-8 -*-
from codecs import open
from setuptools import setup, find_packages
from os import path
HERE = path.abspath(path.dirname(__file__))
def read(relpath):
with open(path.join(HERE, relpath), encoding="utf-8") as f:
return f.read()
setup(
name='fargo',
description='Find and Replace inside a Git repo',
long_description="\n\n".join([
read("README.rst"),
"License\n-------",
read("LICENSE.rst")
]),
url='https://github.com/te-je/fargo',
author='Te-je Rodgers',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
setup_requires=['setuptools_scm'],
use_scm_version={"write_to": "fargo/VERSION.txt"},
packages=find_packages(exclude=['test']),
install_requires=['Click~=6.6', 'chardet~=2.3.0', 'colorama~=0.3.7',
'dulwich~=0.13.0'],
extras_require={},
package_data={
'fargo': ['VERSION.txt'],
},
entry_points={
'console_scripts': [
'fargo = fargo:main'
]
},
)