-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.1 KB
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
from setuptools import setup, find_packages
import functools
import os
_in_same_dir = functools.partial(os.path.join, os.path.dirname(__file__))
with open(_in_same_dir("scottypy", "__version__.py")) as version_file:
exec(version_file.read()) # pylint: disable=W0122
install_requires = [
"capacity",
"click",
"emport",
"python-dateutil",
"requests",
"pact"
]
setup(name="scottypy",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="A library for beaming up files to Scotty",
license="BSD",
author="Roey Darwish Dror",
author_email="roey.ghost@gmail.com",
url="https://github.com/getslash/scottypy",
version=__version__, # pylint: disable=E0602
packages=find_packages(exclude=["unittests"]),
install_requires=install_requires,
entry_points=dict(
console_scripts=[
"scotty = scottypy.app:main",
]
),
)