-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (25 loc) · 804 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
29
30
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
name = "maya_script_editor_highlighter"
author = "Martin L'Anton"
author_email = "lantonmartin@gmail.com"
url = "https://github.com/martinlanton/maya_script_editor_highlighter"
description = "usersetup.py for Autodesk Maya for Script Editor highlighting."
python_requires = ">=3.6, <4"
setup(
name=name,
version="1.1.0",
author=author,
author_email=author_email,
description=description,
long_description=long_description,
url=url,
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=python_requires,
)