-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (32 loc) · 852 Bytes
/
setup.py
File metadata and controls
41 lines (32 loc) · 852 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
# Application name:
name="algorithms",
# Application author details:
author="Mudassirkhan",
author_email="mudassir@intangles.com",
# Packages
packages=find_packages(),
# Include additional files into the package
include_package_data=True,
# Details
# license="LICENSE.txt",
description="Python AsyncIO ",
classifiers=[
"Programming Language :: Python 3.6.4 :: Anaconda, Inc",
"Topic :: Algorithms :: Analytics"
],
url="https://github.com/Intangles/algorithms",
license="Open Source",
# Dependent packages (distributions)
install_requires=[
"requests",
"urllib3",
"aiohttp",
"async_timeout",
"aioredis",
"motor",
"aiofiles",
"bokeh"
],
)