-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (32 loc) · 1.04 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
35
36
37
import codecs
from setuptools import setup, find_packages
with codecs.open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with codecs.open("VERSION", "r", encoding="utf-8") as fh:
version = fh.read().strip()
setup(
name="cgtwq_uploader",
version=version,
packages=find_packages(),
description="Uploader application for CGTeamwork.",
long_description=long_description,
long_description_content_type="text/markdown",
author="NateScarlet",
author_email="NateScarlet@Gmail.com",
classifiers=[
"Private :: Do Not Upload",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
url="https://github.com/WuLiFang/cgtwq",
install_requires=[
"Qt.py~=1.1",
"cgtwq~=3.3",
"wlf~=0.6",
],
include_package_data=True,
)