forked from AtTheRoot/ATR-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 759 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name='atr-sdk',
description='A python package for building antiracist and inclusive systems.',
long_description=long_description,
long_description_content_type='text/markdown',
author="Dawn Wages with Volunteer Engineers for The Movement"
author_email="[email protected]",
url="https://github.com/VE4TM/ATR-SDK",
include_package_data=True,
packages=find_packages(),
zip_safe=False,
setup_requires=['setuptools_scm'],
use_scm_version=True,
version='0.0.1',
packages=['mypackage'],
install_requires=[
'requests',
'importlib-metadata; python_version == "3.8"',
],
)