You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
421 B
Python
16 lines
421 B
Python
6 years ago
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="pulley",
|
||
|
version="0.1.0",
|
||
|
author="Drew Bednar",
|
||
|
author_email="drew@androiddrew.com",
|
||
|
description="Globalmantics restful api",
|
||
|
packages=find_packages(exclude=["tests"]),
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT license",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
)
|