-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (25 loc) · 926 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
from setuptools import setup
from simple_value_object import get_version
setup(
name="simple-value-object",
version=get_version(),
license="MIT/X11",
author="Quique Porta",
author_email="me@quiqueporta.com",
description="A simple library to create Value Objects",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/quiqueporta/value-object",
download_url="https://github.com/quiqueporta/simple-value-object/releases",
keywords=["python", "ddd"],
packages=["simple_value_object"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
)