-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 865 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 865 Bytes
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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
VERSION = '1.0.1'
DESCRIPTION = 'Python package to interact with Houseparty\'s API.'
setup(
name='houseparty',
version=VERSION,
author='Miles Rack',
author_email='milesr4@protonmail.com',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/milesrack/houseparty',
license='MIT',
packages=find_packages(),
install_requires=['requests'],
keywords=['python', 'houseparty', 'api', 'houseparty-app'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
]
)