forked from jcarbaugh/cereal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 765 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
from setuptools import setup
long_description = open('README.md').read()
setup(
name="pycereal",
version='1.0',
packages=["cereal"],
include_package_data=True,
description="A simple object and Django model JSON serializer",
url="https://github.com/istrategylabs/cereal",
author="Jeremy Carbaugh",
author_email="[email protected]",
license='BSD',
long_description=long_description,
long_description_content_type="text/markdown",
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)