-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 874 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
29
30
31
32
#!/usr/bin/env python
# PyPI upload:
#
# $ python -m pip install --upgrade twine wheel
# $ python setup.py sdist bdist_wheel --universal
# $ twine upload dist/*
#
# Install in development:
#
# $ python3 -m pip install -e .
from setuptools import setup, find_packages
VERSION = "0.1.0"
INSTALL_REQUIRES = ["requests<3.0.0"]
TESTS_REQUIRE = ["pytest"]
if __name__ == "__main__":
setup(
name="userlist-python",
version=VERSION,
author="Maksym Sugonyaka",
author_email="maksym@newscatcherapi.com",
url="https://github.com/userlist/userlist-python",
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
description="An official Python client for the Userlist API",
download_url="",
keywords=["userlist", "marketing email"],
)