-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
if __name__ == '__main__':
setup(packages=find_packages(),
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
name="pandas-chaining-ninja",
author="Daniele Ongari",
author_email="[email protected]",
description="Pandas Chaining Ninja is a library that helps you to writing pandas code in a more readable way.",
url="https://github.com/danieleongari/pandas-chaining-ninja",
license="Creative Commons",
classifiers=["Programming Language :: Python"],
version="0.1.0",
install_requires=[
"pandas==2.2.3",
"ipython"
],
extras_require={
"testing": [
"pytest==7.3.1",
"pytest-cov==2.12.1"
],
"pre-commit": [
"pre-commit==3.2.2"
]
})