-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (48 loc) · 1.42 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
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
with open("basxconnect/__init__.py") as f:
# magic n stuff
version = (
[i for i in f.readlines() if "__version__" in i][-1]
.split("=", 1)[1]
.strip()
.strip('"')
)
setup(
name="basxconnect",
version=version,
description="CRM application for non-profit organizations",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/basxsoftwareassociation/basxconnect",
author="basx Software Association",
author_email="[email protected]",
license="New BSD License",
install_requires=[
"basx-bread",
"django-formtools == 2.3",
"djangorestframework",
"chardet",
"tablib",
"dateparser",
],
extras_require={
"testing": ["basx-bread[testing]"],
"mailer-integration": ["mailchimp_marketing"],
},
packages=find_packages(),
zip_safe=False,
include_package_data=True,
setup_requires=["setuptools_scm"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
],
)