-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 831 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
from setuptools import setup, find_packages
setup(
name="revit_meows",
version="0.1.7",
author="chuongmep",
author_email="chuongpqvn@gmail.com",
description="A tool for extracting data from Revit ACC",
long_description=open("Readme.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/chuongmep/revit-meows",
package_dir={"": "src"},
# packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"pandas>=2.1.4",
"numpy>=1.26.0",
"requests>=2.0",
"aps-toolkit"
],
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)