-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 925 Bytes
/
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
import setuptools
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name='pyflat',
url='https://github.com/risparfinance/pyflat',
author='Rafael Izidoro',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.2.1',
description='Python library to transform objects into positional flat string lines',
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Customer Service',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)