-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (44 loc) · 1.42 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
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Install typet."""
from __future__ import unicode_literals
from setuptools import setup
from setuptools import find_packages
setup(
name="typet",
use_scm_version=True,
description="A library of types that simplify working with typed Python.",
long_description=open("README.rst").read(),
author="Melissa Nuno",
author_email="[email protected]",
url="https://github.com/contains-io/typet",
keywords=[
"typing",
"schema",
"validation",
"types",
"annotation",
"PEP 483",
"PEP 484",
"PEP 526",
],
license="MIT",
packages=find_packages(exclude=["tests", "docs"]),
install_requires=["pathlib2"],
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest >= 3.2"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"Topic :: Software Development",
],
)