-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (51 loc) · 1.55 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
REQUIREMENTS = [
"nexmo ~= 2.0",
"django ~= 2.0",
"attrs ~= 17.4",
"marshmallow >= 3.0.0rc3",
"phonenumbers ~= 8.9",
]
DEV_REQUIREMENTS = [
"pytest",
"tox",
"pytest-cov",
"pytest-django",
"black",
"ipython",
"twine",
"invoke ~= 1.0.0",
"pip-tools ~= 3.6",
]
setup(
name="dj-nexmo",
version="0.0.4",
author="Nexmo Developer Relations",
author_email="devrel@nexmo.com",
url="https://github.com/Nexmo/dj-nexmo/",
description="Utilities for Django developers using Nexmo APIs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages("src"),
package_dir={"": "src"},
zip_safe=True,
entry_points={
"console_scripts": ["dj = django.core.management:execute_from_command_line"]
},
install_requires=REQUIREMENTS,
extras_require={"dev": DEV_REQUIREMENTS},
python_requires=">=3.4",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Telephony",
],
)