-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 823 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
27
28
import os
from setuptools import setup, find_packages
# The directory containing this file
HERE = os.path.dirname(os.path.abspath(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.md"), "r") as f:
README = f.read()
# This call to setup() does all the work
setup(
name="pycoyote",
version="0.0.8",
description="A Python library for building Web user interfaces",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/stonezhong/pycoyote",
author="Stone Zhong",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
package_dir = {'': 'src'},
packages=find_packages(where='src'),
)