-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
executable file
·30 lines (26 loc) · 890 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
28
29
30
#!/usr/bin/env python
import setuptools
from setuptools import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(name='cleanco',
description='Python library to process company names',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.4-dev',
license="MIT",
license_files=('LICENSE.txt',),
classifiers = [
"Topic :: Office/Business",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
url='https://github.com/psolin/cleanco',
author='Paul Solin',
author_email='[email protected]',
packages=["cleanco"],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'tox'],
)