-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.22 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
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="async-files",
version="0.4",
description="Async Files",
long_description=long_description,
long_description_content_type="text/markdown",
author="Niraj Kamdar",
packages=find_packages(),
license="MIT",
url="https://github.com/Niraj-Kamdar/async-files",
download_url="https://github.com/Niraj-Kamdar/async-files/archive/master.zip",
keywords=["asyncio", "file", "aiofile"],
classifiers=[
"Development Status :: 4 - Beta",
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)