-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (45 loc) · 1.33 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
import os
import pypandoc
from setuptools import find_packages
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "syp",
version = "0.1.7",
packages = find_packages(),
scripts = ['syp/syp.py', 'syp/settings.py', 'README.org'],
install_requires = [
"termcolor", # colored print
"clize", # build cli args from the method (kw)args
"six",
"future",
"addict",
],
package_data = {
# If any package contains *.txt or *.rst files, include them:
# '': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
# 'hello': ['*.msg'],
},
# metadata for upload to PyPI
author = "vindarel",
author_email = "[email protected]",
description = "Sync your packages with your dotfiles (and vice versa).",
long_description = pypandoc.convert('README.org', 'rst'),
license = "GNU GPLv3",
keywords = "utility packages shell",
url = "https://github.com/vindarel/syp",
entry_points = {
"console_scripts": [
"syp = syp:run",
],
},
tests_require = {
},
classifiers = [
"Environment :: Console",
"License :: Public Domain",
"Topic :: Utilities",
],
)