-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (39 loc) · 1.35 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
from setuptools import setup
# read the contents of the README file
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
# Get the contents of the requirements file
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name = 'wrangles',
packages = [
'wrangles',
'wrangles.connectors',
'wrangles.recipe_wrangles'
],
description = 'Wrangle your data into shape with AI',
long_description = long_description,
long_description_content_type = 'text/markdown',
license_files = ('LICENSE.txt',),
license = 'Apache License 2.0',
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent'
],
version = '1.13.0',
url = 'https://github.com/wrangleworks/WranglesPy',
author = 'WrangleWorks',
author_email = '[email protected]',
keywords = ['data','wrangling'],
install_requires = requirements,
entry_points ={
'console_scripts': ['wrangles.recipe = wrangles.console:recipe']
},
project_urls = {
'Bug Tracker': 'https://github.com/wrangleworks/WranglesPy/issues',
'Documentation': 'https://wrangles.io/python',
'Source Code': 'https://github.com/wrangleworks/WranglesPy',
}
)