-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 953 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 953 Bytes
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
README = f.read()
return README
VERSION = '1.0.0'
DESCRIPTION = 'Flatten nested Python lists into a single-depth list'
setup(
name="flatifylists",
version=VERSION,
author="Karishma Shukla",
author_email="karishmashuklaa@gmail.com",
url="https://github.com/karishmashuklaa/flatifyLists",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description= readme(),
packages=find_packages(),
install_requires=['pytest'],
keywords=['flatten', 'lists', 'nested-lists', 'flatten-lists', 'nesting', 'flatify-list'],
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)