-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1.01 KB
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
"""
setup
~~~~~
"""
from setuptools import find_packages, setup
import craigslist_meta
_classifiers = [
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
if __name__ == "__main__":
setup(
name="python-craigslist-meta",
version=craigslist_meta.__version__,
author="Ira Horecka",
author_email="ira89@icloud.com",
url="https://github.com/irahorecka/python-craigslist-meta",
py_modules=["craigslist_meta"],
description="A simple API to traverse Craigslist endpoints",
long_description=open("README.rst", encoding="utf-8").read(),
license="MIT",
classifiers=_classifiers,
packages=find_packages(),
)