-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1019 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
31
32
33
34
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pcmc
classifiers = [
'Development Status :: 5 - Production',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
exclude = ['.idea*', 'build*', '{}.egg-info*'.format(__package__), 'dist*', 'venv*', 'doc*', 'lab*']
setup(
name=pcmc.__package__,
version=pcmc.__version__,
packages=find_packages(exclude=exclude),
entry_points={
'console_scripts': [
'pcmc = pcmc.cli:run'
]
},
url=pcmc.__site__,
long_description=pcmc.__long_description__,
long_description_content_type="text/markdown",
license=pcmc.__license__,
author=pcmc.__author__,
author_email=pcmc.__email__,
description=pcmc.__description__,
keywords=pcmc.__keywords__,
install_requires=['tabulate', 'pandas', 'bs4', 'py-term', 'lxml'],
classifiers=classifiers)