-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (55 loc) · 1.42 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
import os
import setuptools
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="geese",
version="1.1.3",
author="Aplura, LLC",
author_email="appsupport@aplura.com",
description="Cribl Migrator",
license="MIT",
license_files=('LICENSE.txt',),
keywords="aplura cribl migration",
url="https://www.aplura.com",
packages=setuptools.find_packages(),
package_data={"geese": [
"constants/**/*",
"configs/**/*",
"commands/**/*",
"assets/**/*",
"constants/*",
"configs/*",
"commands/*",
"assets/*",
"knowledge/*",
"knowledge/**/*",
"utils/*",
"utils/**/*",
"*.py",
"README.md",
"LICENSE.txt",
]},
long_description=read('README'),
install_requires=[
"PyYAML",
"termcolor",
"multicommand",
"deepdiff",
"deepmerge",
"urllib3",
"build"
],
classifiers=[
"Development Status :: 1 - Alpha",
"Topic :: Utilities",
"License :: MIT",
],
entry_points={
"console_scripts": ["geese = geese:main.main", ],
}
)