-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (38 loc) · 1.12 KB
/
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
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
VERSION = "1.0.0"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="perl",
version=VERSION,
author="Richard Terry",
author_email="code@radiac.net",
description=("Perl as a Python package"),
license="BSD",
keywords="socket telnet",
url="http://radiac.net/projects/python-perl/",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Perl",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
install_requires=["six"],
setup_requires=["pytest-runner"],
tests_require=[
"pytest",
"pytest-black",
"pytest-cov",
"pytest-flake8",
"pytest-isort",
"pytest-mypy",
],
zip_safe=True,
packages=find_packages(exclude=("docs", "tests*")),
include_package_data=True,
)