-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 886 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-pypi.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='Lemuras',
version='1.2.3',
author='AivanF.',
author_email='projects@aivanf.com',
description='A small Python library to deal with big tables',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AivanF/Lemuras',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Utilities',
'Topic :: Text Processing',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: Freely Distributable',
],
)