|
7 | 7 |
|
8 | 8 | BASE_LOCATION = os.path.abspath(os.path.dirname(__file__)) |
9 | 9 |
|
10 | | -VERSION_FILE = os.path.join(BASE_LOCATION, "ustubby", "__init__.py") |
| 10 | +VERSION_FILE = os.path.join(BASE_LOCATION, "src", "ustubby", "__init__.py") |
11 | 11 | REQUIRES_FILE = 'requirements.txt' |
12 | 12 | DEPENDENCIES_FILE = None |
13 | 13 |
|
@@ -54,19 +54,21 @@ def get_dependencies(): |
54 | 54 | author="Ryan Parry-Jones", |
55 | 55 | |
56 | 56 | description="Micropython c stub generator", |
57 | | - package_dir={'': ''}, |
58 | | - packages=find_packages(''), |
59 | | - scripts=[], |
| 57 | + package_dir={'': 'src'}, |
| 58 | + packages=find_packages('src'), |
60 | 59 | url="https://github.com/pazzarpj/ustubby", |
61 | 60 | version=get_version(), |
62 | | - python_requires='~=3.6', |
| 61 | + python_requires='>=3.6', |
63 | 62 | dependency_links=[], |
64 | 63 | include_package_data=True, |
65 | 64 | zip_safe=False, |
66 | 65 | classifiers=[ |
67 | 66 | "Development Status :: 4 - Beta", |
68 | 67 | "Intended Audience :: Manufacturing", |
69 | 68 | "License :: OSI Approved :: MIT License", |
70 | | - "Programming Language :: Python :: 3 :: Only" |
| 69 | + "Programming Language :: Python :: 3 :: Only", |
| 70 | + "Programming Language :: Python :: 3.6", |
| 71 | + "Programming Language :: Python :: 3.7", |
| 72 | + "Programming Language :: Python :: 3.8", |
71 | 73 | ], |
72 | 74 | ) |
0 commit comments