-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 693 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import setuptools
setuptools.setup(
name="sureberus",
version="0.14.0",
description="Validation & transformation.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
project_urls={
"Source Code": "https://github.com/radix/sureberus/",
"Documentation": "https://radix.github.io/sureberus/",
},
author="Christopher Armstrong",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
packages=["sureberus"],
install_requires=["six", "attrs"],
)