-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (22 loc) · 664 Bytes
/
setup.py
File metadata and controls
30 lines (22 loc) · 664 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
import setuptools
import multicomma
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="MultiComma",
version=multicomma.__version__,
url="https://github.com/darricktheprogrammer/multicomma",
author="Darrick Herwehe",
author_email="darrick@exitcodeone.com",
description="Placeholder text for short description",
long_description=long_description,
license="MIT",
packages=setuptools.find_packages(),
install_requires=[],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
)