-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (46 loc) · 1.37 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
#!/usr/bin/env python
# -*- coding: utf-8 -*
import pathlib
from setuptools import find_packages, setup
VERSION = "0.0.1-alpha.1"
REPO_ROOT = pathlib.Path(__file__).parent
with open(REPO_ROOT / "README.md", encoding="utf-8") as f:
README = f.read()
REQUIREMENTS = [
"tqdm",
"s3fs",
"parse"
]
setup_args = dict(
# Description
name="s3migrate",
version=VERSION,
description="Change key structure with ease - make your data Athena-ready",
long_description=README,
long_description_content_type='text/markdown',
# Credentials
author="Octopus Energy",
author_email="nerds@octoenergy.com",
url="https://github.com/octoenergy/s3migrate",
license="MIT",
# Package data
package_dir={"": "src"},
packages=find_packages("src", include=["*s3migrate*"]),
entry_points={"console_scripts": []},
include_package_data=False,
# Dependencies
install_requires=REQUIREMENTS,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Typing :: Typed",
],
)
if __name__ == "__main__":
# Make install
setup(**setup_args)