-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.2 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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.0.14'
DESCRIPTION = 'Data wrangling on files read with pyreadstat'
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
# Setting up
setup(
name="metatables",
version=VERSION,
author="Joël Grosjean",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
"pyreadstat >= 1.1",
"pandas >= 1.3"
],
extras_require={
"dev": [
"pytest >= 3.7",
"check-manifest",
"twine",
"pdoc3",
"flake8",
"autopep8"
]
},
keywords=['python'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
],
project_urls={
'Repository': 'https://github.com/tez4/metatables',
'Documentation': 'https://tez4.github.io/metatables/'
}
)