-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 747 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 747 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
from setuptools import setup, find_packages
import os
print("Current Directory:", os.getcwd())
print("Included Packages:", find_packages())
#print("Files in cfg Directory:", os.listdir('cfg'))
setup(
name='CopyCraftAPI',
version='0.7.0',
packages=find_packages() + ['CopyCraftAPI.cfg'],
include_package_data=True,
package_data={
'CopyCraftAPI': ['CopyCraftAPI/cfg/**/*']
},
install_requires=[
'openai'
],
entry_points={
'console_scripts': [
'copycraft=CopyCraftAPI.cli.main:main'
],
},
author="Ben Hsu",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/BenHsu501/CopyCraftAPI",
)